home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / misc1 / iv26_w30.zip / INTERVIE / GRAPHIC / GRCLASSE.H < prev    next >
C/C++ Source or Header  |  1991-12-10  |  2KB  |  63 lines

  1. /*
  2.  * Copyright (c) 1987, 1988, 1989 Stanford University
  3.  *
  4.  * Permission to use, copy, modify, distribute, and sell this software and its
  5.  * documentation for any purpose is hereby granted without fee, provided
  6.  * that the above copyright notice appear in all copies and that both that
  7.  * copyright notice and this permission notice appear in supporting
  8.  * documentation, and that the name of Stanford not be used in advertising or
  9.  * publicity pertaining to distribution of the software without specific,
  10.  * written prior permission.  Stanford makes no representations about
  11.  * the suitability of this software for any purpose.  It is provided "as is"
  12.  * without express or implied warranty.
  13.  *
  14.  * STANFORD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  15.  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
  16.  * IN NO EVENT SHALL STANFORD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  17.  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  18.  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  19.  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
  20.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  21.  */
  22.  
  23. /* 
  24.  * Unique Graphic object class identifiers
  25.  * (must be in range 2000 <= ClassId <= 2999)
  26.  */
  27.  
  28. #ifndef grclasses_h
  29. #define grclasses_h
  30.  
  31. static const int _GRAPHIC    = 2004;
  32. static const int _FULL_GRAPHIC    = 2005;
  33. static const int _PICTURE    = 2006;
  34. static const int _INSTANCE    = 2007;
  35. static const int _ELLIPSE    = 2008;
  36. static const int _FILLELLIPSE    = 2009;
  37. static const int _CIRCLE    = 2010;
  38. static const int _FILLCIRCLE    = 2011;
  39. static const int _POINT        = 2012;
  40. static const int _LINE        = 2013;
  41. static const int _MULTILINE    = 2014;
  42. static const int _RECT        = 2015;
  43. static const int _FILLRECT    = 2016;
  44. static const int _POLYGON    = 2017;
  45. static const int _FILLPOLYGON    = 2018;
  46. static const int _BSPLINE    = 2019;
  47. static const int _CLOSEDBSPLINE    = 2020;
  48. static const int _FILLBSPLINE    = 2021;
  49. static const int _LABEL        = 2022;
  50. static const int _PCOLOR    = 2023;
  51. static const int _POINTOBJ    = 2025;
  52. static const int _LINEOBJ    = 2026;
  53. static const int _BOXOBJ    = 2027;
  54. static const int _MULTILINEOBJ    = 2028;
  55. static const int _FILLPOLYGONOBJ= 2029;
  56. static const int _PPATTERN    = 2033;
  57. static const int _PFONT        = 2034;
  58. static const int _PBRUSH    = 2035;
  59. static const int _RASTERRECT    = 2036;
  60. static const int _STENCIL       = 2037;
  61.  
  62. #endif
  63.